/* =========================================
        SERVICES MASTER STYLESHEET
========================================= */
:root {
    --primary-color: #0D8A45;
    --primary-hover: #0a6f37;
    --primary-light: #EAF8EF;
    --dark-color: #101828;
    --text-muted: #667085;
    --bg-light: #F8FBF9;
    --white: #ffffff;
}

/* =========================================
        HERO SECTION (.services-hero)
========================================= */

.services-hero {
    position: relative;
    padding: 90px 0;
    overflow: hidden;
    background: linear-gradient(135deg, #ffffff 0%, #f7fbf8 100%);
}

.services-hero::before {
    content: "";
    position: absolute;
    width: 650px;
    height: 650px;
    top: -260px;
    right: -220px;
    background: rgba(13, 138, 69, .08);
    border-radius: 50%;
    z-index: 0;
}

.services-hero::after {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    left: -120px;
    bottom: -120px;
    background: rgba(13, 138, 69, .05);
    border-radius: 50%;
    z-index: 0;
}

.hero-wrapper {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: 80px;
}

.hero-content {
    display: flex;
    flex-direction: column;
}

.hero-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    font-size: 15px;
    color: #777;
}

.hero-breadcrumb a {
    color: #777;
    transition: .3s;
    text-decoration: none;
}

.hero-breadcrumb a:hover {
    color: var(--primary-color);
}

.hero-breadcrumb .active-page {
    color: var(--primary-color);
    font-weight: 600;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    padding: 12px 24px;
    border-radius: 50px;
    background: #eaf8ef;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .5px;
    margin-bottom: 28px;
}

.hero-badge i {
    font-size: 15px;
}

.hero-content h1 {
    font-size: 64px;
    line-height: 1.08;
    font-weight: 800;
    color: #101828;
    margin-bottom: 28px;
}

.hero-content h1 span {
    color: var(--primary-color);
}

.hero-content p {
    max-width: 620px;
    font-size: 18px;
    line-height: 1.9;
    color: #667085;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 45px;
    flex-wrap: wrap;
}

.hero-buttons .btn-primary {
    min-width: 210px;
    height: 58px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    background: var(--primary-color);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 15px 35px rgba(13, 138, 69, .25);
    transition: .35s;
    text-decoration: none;
}

.hero-buttons .btn-primary:hover {
    transform: translateY(-5px);
    background: var(--primary-hover);
}

.hero-buttons .btn-secondary {
    min-width: 210px;
    height: 58px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    background: #fff;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    font-size: 16px;
    font-weight: 600;
    transition: .35s;
    text-decoration: none;
}

.hero-buttons .btn-secondary:hover {
    transform: translateY(-5px);
    background: var(--primary-color);
    color: #fff;
}

.hero-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.hero-highlights div {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    padding: 18px 20px;
    border-radius: 18px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, .06);
    transition: .35s;
    font-weight: 600;
    color: #1f2937;
}

.hero-highlights div:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .10);
}

.hero-highlights i {
    color: var(--primary-color);
    font-size: 20px;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    width: 100%;
    max-width: 610px;
    border-radius: 28px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, .18);
}

/* =========================================
            OVERVIEW SECTION
========================================= */

.services-overview {
    padding: 100px 0;
    background: #fff;
}

.overview-wrapper {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    align-items: center;
    gap: 70px;
}

.overview-image {
    position: relative;
    height: 640px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0, 0, 0, .15);
}

.overview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-tag {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 50px;
    background: #EAF8EF;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .5px;
    margin-bottom: 20px;
}

.overview-content h2 {
    font-size: 42px;
    font-weight: 800;
    color: #111827;
    line-height: 1.2;
    margin-bottom: 25px;
}

.overview-content>p {
    font-size: 17px;
    line-height: 1.8;
    color: #667085;
    margin-bottom: 40px;
}

.overview-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.overview-card {
    display: flex;
    gap: 18px;
    padding: 22px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .06);
    transition: .35s;
}

.overview-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 45px rgba(34, 197, 94, .12);
}

.overview-card i {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #EAF8EF;
    color: var(--primary-color);
    font-size: 24px;
    flex-shrink: 0;
}

.overview-card h4 {
    margin-bottom: 8px;
    color: #111827;
    font-size: 18px;
    font-weight: 700;
}

.overview-card p {
    font-size: 15px;
    color: #667085;
    line-height: 1.6;
    margin-bottom: 0;
}

/* =========================================
        SERVICES CATALOG GRID (.services-catalog)
========================================= */

.services-catalog {
    padding: 100px 0;
    background: #F8FBF9;
}

.section-title {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 60px;
}

.section-title span {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.section-title h2 {
    font-size: 42px;
    font-weight: 800;
    color: #111827;
    margin: 12px 0 16px;
}

.section-title p {
    font-size: 16px;
    color: #667085;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.service-card {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .06);
    border: 1px solid #E8ECEA;
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(13, 138, 69, .15);
    border-color: var(--primary-color);
}

.service-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.08);
}

.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(13, 138, 69, .9);
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .5px;
    backdrop-filter: blur(5px);
}

.service-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-icon {
    width: 56px;
    height: 56px;
    background: #EAF8EF;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    margin-bottom: 20px;
    transition: 0.35s ease;
}

.service-card:hover .service-icon {
    background: var(--primary-color);
    color: #ffffff;
    transform: rotate(10deg);
}

.service-content h3 {
    font-size: 22px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 12px;
}

.service-content p {
    font-size: 15px;
    color: #667085;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #374151;
}

.service-features li i {
    color: var(--primary-color);
    font-size: 14px;
}

.service-btn {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    height: 50px;
    background: #EAF8EF;
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.35s ease;
}

.service-btn:hover {
    background: var(--primary-color);
    color: #ffffff;
}

.service-btn i {
    transition: 0.3s ease;
}

.service-btn:hover i {
    transform: translateX(5px);
}

/* =========================================
        COURT STRUCTURE / LAYERS
========================================= */

.court-structure {
    padding: 110px 0;
    background: #fff;
}

.structure-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-top: 60px;
}

.structure-image {
    position: sticky;
    top: 120px;
}

.structure-image img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .10);
}

.structure-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.layer-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 20px 22px;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .06);
    transition: .35s;
    border: 1px solid #F1F1F1;
}

.layer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .10);
    border-color: var(--primary-color);
}

.layer-number {
    width: 54px;
    height: 54px;
    min-width: 54px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: 700;
}

.layer-card h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: #111827;
    font-weight: 700;
}

.layer-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #667085;
    margin-bottom: 0;
}

/* =========================================
        MATERIALS WE USE
========================================= */

.materials-section {
    padding: 110px 0;
    background: #F8FBF9;
}

.materials-timeline {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 70px;
    gap: 15px;
}

.timeline-line {
    position: absolute;
    top: 34px;
    left: 4%;
    width: 92%;
    height: 3px;
    background: #d9e5dc;
    z-index: 1;
}

.material-step {
    position: relative;
    z-index: 2;
    flex: 1;
    text-align: center;
    transition: .35s;
}

.step-circle {
    width: 70px;
    height: 70px;
    margin: auto;
    border-radius: 50%;
    background: #fff;
    border: 3px solid #d9e5dc;
    color: #777;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: 700;
    transition: .35s;
}

.material-step h4 {
    margin-top: 22px;
    margin-bottom: 8px;
    font-size: 18px;
    color: #111827;
    font-weight: 700;
}

.material-step p {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 0;
}

.material-step:hover .step-circle,
.material-step.active .step-circle {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    transform: scale(1.08);
}

.material-step:hover h4,
.material-step.active h4 {
    color: var(--primary-color);
}

/* =========================================
        CONSTRUCTION PROCESS
========================================= */

.construction-process {
    padding: 110px 0;
    background: #fff;
}

.process-wrapper {
    position: relative;
    display: flex;
    justify-content: space-between;
    margin-top: 70px;
    gap: 20px;
}

.process-line {
    position: absolute;
    top: 35px;
    left: 5%;
    width: 90%;
    height: 3px;
    background: #dce7df;
    z-index: 1;
}

.process-step {
    position: relative;
    z-index: 2;
    flex: 1;
    text-align: center;
}

.process-circle {
    width: 72px;
    height: 72px;
    margin: auto;
    border-radius: 50%;
    background: #fff;
    border: 3px solid #dce7df;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    color: var(--primary-color);
    transition: .35s;
}

.process-step:hover .process-circle {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    transform: translateY(-8px);
}

.process-step h4 {
    margin-top: 22px;
    font-size: 17px;
    font-weight: 700;
    color: #111827;
}

/* =========================================
        WHY SPORTSCAMP INFRA
========================================= */

.why-choose {
    padding: 120px 0;
    background: #ffffff;
    overflow: hidden;
}

.why-image {
    margin-top: 70px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0, 0, 0, .12);
}

.why-image img {
    width: 100%;
    height: 620px;
    display: block;
    object-fit: cover;
    transition: .5s;
}

.why-image:hover img {
    transform: scale(1.04);
}

.why-stats {
    margin-top: -45px;
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: linear-gradient(90deg, #0B8B44, #17B45C);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .15);
}

.stat-item {
    text-align: center;
    padding: 35px 20px;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 65px;
    background: rgba(255, 255, 255, .25);
}

.stat-item h3 {
    color: #fff;
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.stat-item p {
    color: rgba(255, 255, 255, .92);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 0;
}

.why-features {
    margin-top: 80px;
}

.feature-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 35px 0;
    border-bottom: 1px solid #E8E8E8;
    transition: .35s;
}

.feature-row:first-child {
    border-top: 1px solid #E8E8E8;
}

.feature-left {
    display: flex;
    align-items: flex-start;
    gap: 28px;
}

.feature-icon {
    width: 72px;
    height: 72px;
    min-width: 72px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #EAF8EF;
    color: var(--primary-color);
    font-size: 28px;
    transition: .35s;
}

.feature-left h3 {
    font-size: 28px;
    color: #111827;
    margin-bottom: 12px;
    font-weight: 700;
}

.feature-left p {
    max-width: 760px;
    font-size: 16px;
    line-height: 1.9;
    color: #667085;
    margin-bottom: 0;
}

.feature-row:hover {
    padding-left: 15px;
}

.feature-row:hover .feature-icon {
    background: var(--primary-color);
    color: #fff;
    transform: rotate(10deg);
}

.feature-row:hover h3 {
    color: var(--primary-color);
}

/* =========================================
        BEFORE & AFTER
========================================= */

.before-after {
    padding: 120px 0;
    background: #F8FBF9;
    overflow: hidden;
}

.comparison-wrapper {
    margin-top: 70px;
}

.comparison-container {
    position: relative;
    width: 100%;
    height: 650px;
    border-radius: 30px;
    overflow: hidden;
    -webkit-user-select: none;
    user-select: none;
    box-shadow: 0 30px 70px rgba(0, 0, 0, .15);
    cursor: ew-resize;
}

.comparison-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.before-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
}

.before-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.label {
    position: absolute;
    top: 30px;
    padding: 10px 22px;
    border-radius: 40px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, .45);
    z-index: 5;
}

.before-label {
    left: 30px;
}

.after-label {
    right: 30px;
}

.slider-line {
    position: absolute;
    left: 50%;
    top: 0;
    width: 3px;
    height: 100%;
    background: #fff;
    transform: translateX(-50%);
    z-index: 10;
}

.slider-button {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #16A34A;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 26px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .25);
    border: 4px solid #fff;
    transition: .3s;
    cursor: grab;
}

.slider-button:active {
    cursor: grabbing;
    transform: translate(-50%, -50%) scale(.92);
}

.comparison-container:hover .slider-button {
    transform: translate(-50%, -50%) scale(1.08);
}

.comparison-benefits {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.benefit-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 20px;
    background: #fff;
    border-radius: 50px;
    border: 1px solid #E5E7EB;
    transition: .35s;
}

.benefit-item i {
    color: var(--primary-color);
    font-size: 18px;
}

.benefit-item span {
    font-size: 15px;
    font-weight: 600;
    color: #111827;
}

.benefit-item:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, .12);
}

.benefit-item:hover i,
.benefit-item:hover span {
    color: #fff;
}

/* =========================================
            FINAL CTA
========================================= */

.final-cta {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #08120D 0%, #0D1E15 50%, #07110C 100%);
    background-image:
        linear-gradient(135deg, #08120D 0%, #0D1E15 50%, #07110C 100%),
        linear-gradient(rgba(255, 255, 255, .02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .02) 1px, transparent 1px);
    background-size: cover, 55px 55px, 55px 55px;
}

.final-cta::before {
    content: "";
    position: absolute;
    width: 650px;
    height: 650px;
    right: -180px;
    top: -100px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(34, 197, 94, .22), rgba(22, 163, 74, .10), transparent 72%);
    filter: blur(90px);
    z-index: 0;
}

.final-cta::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    left: -120px;
    bottom: -120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(34, 197, 94, .12), transparent 70%);
    filter: blur(90px);
}

.cta-wrapper {
    display: grid;
    grid-template-columns: 1fr 620px;
    align-items: center;
    gap: 70px;
    position: relative;
    z-index: 2;
}

.cta-badge {
    display: inline-block;
    padding: 11px 22px;
    border-radius: 50px;
    border: 1px solid rgba(34, 197, 94, .35);
    background: rgba(34, 197, 94, .08);
    color: #4ADE80;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.cta-content h2 {
    font-size: 68px;
    line-height: 1.05;
    color: #ffffff;
    font-weight: 800;
}

.cta-content h2 span {
    display: block;
    color: var(--primary-color);
    font-size: 86px;
    margin: 8px 0;
    letter-spacing: 2px;
}

.cta-content p {
    margin-top: 35px;
    max-width: 560px;
    color: rgba(255, 255, 255, .78);
    font-size: 18px;
    line-height: 1.9;
}

.cta-buttons {
    display: flex;
    gap: 24px;
    margin-top: 45px;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 40px;
    border-radius: 14px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: .35s;
}

.primary-btn {
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 20px 40px rgba(34, 197, 94, .25);
}

.primary-btn:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 55px rgba(34, 197, 94, .35);
}

.secondary-btn {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .06);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.secondary-btn:hover {
    background: #ffffff;
    color: #111827;
}

.cta-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-glow {
    position: absolute;
    width: 560px;
    height: 560px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(34, 197, 94, .25), rgba(34, 197, 94, .12), transparent 72%);
    filter: blur(90px);
}

.cta-image img {
    width: 100%;
    max-width: 600px;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 30px 40px rgba(0, 0, 0, .35));
    transition: .45s;
}

.cta-image:hover img {
    transform: translateY(-15px) rotate(-3deg) scale(1.05);
}

.cta-features {
    margin-top: 80px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    position: relative;
    z-index: 2;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 24px;
    border-radius: 20px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .08);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    transition: .35s;
}

.cta-feature:hover {
    transform: translateY(-8px) scale(1.03);
    background: rgba(34, 197, 94, .15);
    border-color: rgba(34, 197, 94, .35);
    box-shadow: 0 20px 40px rgba(34, 197, 94, .18);
}

.cta-feature i {
    width: 58px;
    height: 58px;
    min-width: 58px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(34, 197, 94, .12);
    color: #4ADE80;
    font-size: 22px;
    transition: .35s;
}

.cta-feature:hover i {
    background: #22C55E;
    color: #fff;
    transform: rotate(10deg);
}

.cta-feature h4 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 6px;
    font-weight: 600;
}

.cta-feature span {
    color: rgba(255, 255, 255, .72);
    font-size: 14px;
}

/* =========================================
            FAQ SECTION
========================================= */

.faq-section {
    padding: 120px 0;
    background: #F8FBF9;
    position: relative;
    overflow: hidden;
}

.faq-wrapper {
    max-width: 950px;
    margin: 70px auto 0;
}

.faq-item {
    background: #ffffff;
    border: 1px solid #E8ECEA;
    border-radius: 20px;
    margin-bottom: 22px;
    overflow: hidden;
    transition: .35s;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .04);
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .08);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 35px;
    border: none;
    outline: none;
    cursor: pointer;
    background: transparent;
    text-align: left;
}

.faq-question span {
    font-size: 22px;
    font-weight: 600;
    color: #111827;
    transition: .3s;
}

.faq-question i {
    width: 50px;
    height: 50px;
    min-width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: #F1F8F4;
    color: var(--primary-color);
    font-size: 18px;
    transition: .35s;
}

.faq-item:hover .faq-question i {
    background: var(--primary-color);
    color: #ffffff;
    transform: rotate(90deg);
}

.faq-item.active {
    border-color: rgba(34, 197, 94, .35);
    box-shadow: 0 20px 45px rgba(34, 197, 94, .10);
}

.faq-item.active .faq-question {
    background: #FCFEFD;
}

.faq-item.active .faq-question span {
    color: var(--primary-color);
}

.faq-item.active .faq-question i {
    background: var(--primary-color);
    color: #ffffff;
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .45s ease;
    background: #ffffff;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 35px 30px;
    color: #667085;
    font-size: 16px;
    line-height: 1.9;
}

/* =========================================
        RESPONSIVE BREAKPOINTS
========================================= */

@media(max-width: 1200px) {
    .hero-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }
    .hero-content h1 {
        font-size: 54px;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .structure-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .structure-image {
        position: relative;
        top: 0;
    }
    .why-image img {
        height: 520px;
    }
    .comparison-container {
        height: 560px;
    }
    .comparison-benefits {
        grid-template-columns: repeat(2, 1fr);
    }
    .cta-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
    }
    .cta-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .cta-image {
        order: -1;
    }
    .cta-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 992px) {
    .services-hero {
        padding: 70px 0;
    }
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .hero-content {
        align-items: center;
        text-align: center;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-highlights {
        width: 100%;
    }
    .hero-image {
        order: -1;
    }
    .overview-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .overview-image {
        height: 520px;
        max-width: 700px;
        margin: auto;
    }
    .overview-content {
        text-align: center;
    }
    .overview-features {
        grid-template-columns: 1fr 1fr;
    }
    .materials-timeline {
        overflow-x: auto;
        padding-bottom: 20px;
        justify-content: flex-start;
        gap: 40px;
    }
    .material-step {
        min-width: 170px;
    }
    .timeline-line {
        width: 1100px;
        left: 35px;
    }
    .process-wrapper {
        overflow-x: auto;
        justify-content: flex-start;
        gap: 40px;
        padding-bottom: 20px;
    }
    .process-step {
        min-width: 150px;
    }
    .process-line {
        width: 1100px;
        left: 35px;
    }
    .why-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    .cta-content h2 {
        font-size: 52px;
    }
    .cta-content h2 span {
        font-size: 64px;
    }
}

@media(max-width: 768px) {
    .hero-content h1 {
        font-size: 40px;
    }
    .hero-buttons {
        flex-direction: column;
    }
    .hero-buttons a {
        width: 100%;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .hero-highlights, .overview-features {
        grid-template-columns: 1fr;
    }
    .comparison-container {
        height: 350px;
    }
    .comparison-benefits {
        grid-template-columns: 1fr;
    }
    .cta-content h2 {
        font-size: 38px;
    }
    .cta-content h2 span {
        font-size: 48px;
    }
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    .cta-btn {
        width: 100%;
        justify-content: center;
    }
    .cta-features {
        grid-template-columns: 1fr;
    }
}

@media(max-width: 576px) {
    .hero-content h1 {
        font-size: 32px;
        line-height: 1.2;
    }
    .hero-content p {
        font-size: 15px;
    }
    .cta-content h2 {
        font-size: 30px;
    }
    .cta-content h2 span {
        font-size: 38px;
    }
    .service-card {
        padding: 0;
    }
}

